home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / sockets / makefile < prev    next >
Encoding:
Makefile  |  1994-08-11  |  780 b   |  49 lines

  1. #
  2. # QOS Makefile for DJGPP.
  3. #
  4.  
  5. CFLAGS= -O -c -DMSDOS
  6.  
  7. .c.o:
  8.     gcc $(CFLAGS) $<
  9.  
  10. L = -lsys -lc -lm
  11.  
  12. all : makefile.tag udaemon.exe tdaemon.exe uclient.exe tclient.exe
  13.  
  14. tdaemon.exe : tdaemon.o
  15.     gcc -o tdaemon tdaemon.o $(L)
  16.     strip tdaemon
  17.     coff2exe tdaemon
  18.     copy tcptestd.dvp ~\network
  19.     del tdaemon
  20.  
  21. udaemon.exe : udaemon.o
  22.     gcc -o udaemon udaemon.o $(L)
  23.     strip udaemon
  24.     coff2exe udaemon
  25.     copy udptestd.dvp ~\network
  26.     del udaemon
  27.  
  28. tclient.exe : tclient.o
  29.     gcc -o tclient tclient.o $(L)
  30.     strip tclient
  31.     coff2exe tclient
  32.     del tclient
  33.  
  34. uclient.exe : uclient.o
  35.     gcc -o uclient uclient.o $(L)
  36.     strip uclient
  37.     coff2exe uclient
  38.     del uclient
  39.  
  40. makefile.tag:
  41.     del *.tag
  42.     del *.o
  43.     del *.map
  44.     del *.exp
  45.     del *.exe
  46.     del *.rsp
  47.     echo >makefile.tag
  48.  
  49.